home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Commun⁄Network / RevRdist Folder / Local #includes / C_config.h next >
Encoding:
C/C++ Source or Header  |  1991-09-06  |  354 b   |  18 lines  |  [TEXT/KAHL]

  1. /*
  2.  * C_config.h - compiler dependent options
  3.  */
  4.  
  5. #ifndef    _H_c_config
  6. #define    _H_c_config
  7. /* defns for LSC */
  8. typedef    long    Longint;            /* pascal LONGINT type */
  9. typedef    short    Integer;            /* pascal INTEGER type */
  10. typedef void    (*vProcPtr)(...);
  11. typedef    Longint    (*lProcPtr)(...);
  12. typedef    Integer    (*iProcPtr)(...);
  13.  
  14. #ifndef    nil
  15. #define    nil        0l
  16. #endif
  17.  
  18. #endif